.swiper-grid>.swiper-wrapper {
    flex-wrap: wrap
}

.swiper-grid-column>.swiper-wrapper {
    flex-wrap: wrap;
    flex-direction: column
}

.about-basil-title {
    font-size: 25px !important;
    padding: 0px 150px;
    line-height: 34px;
    text-transform: uppercase;
}

.max-w-6xl {
    max-width: 72rem;
}

.mx-auto {
    margin-left: auto;
    margin-right: auto;
}

.scroll-image {
    padding: 0px 20px;
}

.scroll-text h2 {
  font-size: 18px;
  text-transform: uppercase;
  margin-top: 20px;
  font-weight: 400;
  line-height: 1.4em;
  text-align: center;
  word-spacing: 3px;
  color: black;
  margin-bottom: 15px;
  letter-spacing: 0.1px;
}

.scroll-text p {
    font-size: 14px;
    color: black;letter-spacing: 0.2px;
    text-align: center;    padding: 0px 30px;
    line-height: 28px;
}

.scroll-image img {
    width: 100%;
}

.grid {
    display: grid;
}

@media (min-width: 1024px) {
    .lg\:grid-cols-2 {
        grid-template-columns: repeat(2, minmax(0px, 1fr));
    }
}

.mx-auto {
    margin-right: auto !important;
    margin-left: auto !important;
}

.h-16 {
    height: 2rem;
}


.paraOne {
    color: black;
    font-size: 15px;
}

.contactDetails img {
    filter: brightness(0) saturate(100%);
}

.ongingprojectList {
    display: flex;
    flex-wrap: wrap;
    /* margin: 40px -1% 0 -1%; */
}

.ongingprojectList .ongingprojectBox {
    width: 31%;
    margin: 14px 10px;
    position: relative;
    overflow: hidden;
    /* background: #000000; */
    padding-bottom: 1px;
    border-radius: 20px;
}

.ongingprojectList .ongingprojectBox .ongingprojectImg:after {
    content: "";
    position: absolute;
    width: 100%;
    left: 0;
    width: 100%;
    height: 50%;
    bottom: 0;
    background-image: linear-gradient(rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.95));
}

.ongingprojectList .ongingprojectBox .ongingprojectImg {
    position: relative;
}

.ongingprojectList .ongingprojectBox .ongingprojectImg img {
    width: 100%;
}

.ongingprojectList .ongingprojectBox .ongingprojectHover {
    position: absolute;
    bottom: 0px;
    left: 0;
    width: 100%;
    padding: 40px;
}

.ongingprojectList .ongingprojectBox:after {
    opacity: 0;
    background: rgb(0 0 0 / 80%);
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    transition: 0.5s;
}

.ongingprojectList .ongingprojectBox:hover:after {
    opacity: 1;
    transition: 0.5s;
}

.ongingprojectList .ongingprojectBox .ongingprojectHover .ongingprojectLogo {
    text-align: center;
    padding-bottom: 0px;
    z-index: 9;
    /* margin-top: 87px; */
    position: relative;
}

.ongingprojectList .ongingprojectBox .ongingprojectHover .ongingprojectLogo img {
    /* height: 50px; */
    width: 150px;
    /* max-width: 60%; */
}

.ongingprojectList .ongingprojectBox .ongingprojectInfo {
    max-height: 0;
    transition: 0.8s;
    overflow: hidden;
    position: relative;
    z-index: 9;
}

.ongingprojectList .ongingprojectBox:hover .ongingprojectInfo {
    max-height: 500px;
    transition: 0.8s;
    margin-top: 20px;
}

.ongingprojectList .ongingprojectBox .ongingprojectInfo ul {}

.ongingprojectList .ongingprojectBox .ongingprojectInfo ul li {
    padding: 20px 20px;
    gap: 20px;
    border-bottom: 1px solid #878787;
    display: flex;
}

.ongingprojectList .ongingprojectBox .ongingprojectInfo ul li .icon {
    width: 40px;
}

.ongingprojectList .ongingprojectBox .ongingprojectInfo ul li .icon img {
    width: 30px;
    object-fit: contain;
    height: 30px;
}

.ongingprojectList .ongingprojectBox .ongingprojectInfo ul li .info {
    color: #dadada;
    font-size: 14px;
    line-height: 18px;
}

.ongingprojectList .ongingprojectBox .ongingprojectInfo ul li .info span {
    font-size: 13px;
    margin-bottom: 10px;
    line-height: 15px;
    text-transform: uppercase;
    color: #ffffff;
    letter-spacing: 0.6px;
    display: block;
}

.ongingprojectList .ongingprojectBox .ongingprojectInfo .readmoreBtn {
    margin-top: 20px;
    font-size: 14px;
    letter-spacing: 0.2px;
    text-align: center;
}

 .video-container {
                    position: relative;
                    overflow: hidden;
                    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);

                }

                .video-container img {
                    display: block;
                    width: 100%;
                    height: auto;
                    object-fit: cover;
                }

                /* PLAY ICON */
                .play-icon {
                    position: absolute;
                    inset: 0;
                    display: flex;
                    justify-content: center;
                    align-items: center;
                   
                }

                .circle {
                    display: flex;
                    justify-content: center;
                    align-items: center;
                    width: 70px;
                    height: 70px;
                    border-radius: 50%;
                    animation: pulse 1s infinite;
                    background: rgb(57 30 25);
                    transform: scale(1.05);
                    color: #fff;
                    font-size: 18px;
                    transition: transform 0.3s ease;
                    position: relative;
                }

                /* Pulse animation effect on hover */
                .play-icon:hover .circle {
                    animation: pulse 1s infinite;
                    background: rgb(220 101 30);
                    transform: scale(1.05);
                }

                @keyframes pulse {
                    0% {
                        box-shadow: 0 0 0 0 rgb(255 255 255 / 66%);
                    }

                    70% {
                        box-shadow: 0 0 0 20px rgb(220 101 30 / 26%);
                    }

                    100% {
                        box-shadow: 0 0 0 0 rgb(148 65 7);
                    }
                }

                /* Popup */
                .video-popup {
                    display: none;
                    position: fixed;
                    inset: 0;
                    z-index: 9999;
                    background: rgba(0, 0, 0, 0.8);
                    justify-content: center;
                    align-items: center;
                    padding: 20px;
                    animation: fadeIn 0.3s ease;
                }

                @keyframes fadeIn {
                    from {
                        opacity: 0;
                    }

                    to {
                        opacity: 1;
                    }
                }

                .video-popup-inner {
                    width: 100%;
                    max-width: 1000px;
                    border-radius: 10px;
                    overflow: hidden;
                    background: #000;
                    position: relative;
                    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.6);
                }

                .video-popup iframe {
                    width: 100%;
                    height: 560px;
                    border: 0;
                    display: block;
                }

                .video-close {
                    position: absolute;
                    top: 12px;
                    right: 12px;
                    z-index: 10;
                    background: rgba(255, 255, 255, 0.06);
                    color: #fff;
                    border-radius: 6px;
                    padding: 6px 10px;
                    font-size: 20px;
                
                    border: none;
                }

                @media (max-width: 900px) {
                    .video-popup iframe {
                        height: 420px;
                    }

                    .circle {
                        width: 72px;
                        height: 72px;
                        font-size: 28px;
                    }
                }

                @media (max-width: 480px) {
                    .video-popup iframe {
                        height: 260px;
                    }

                    .circle {
                        width: 60px;
                        height: 60px;
                        font-size: 22px;
                    }
                }

                /* Popup base styling */
                .popup-form {
                    display: none;
                    position: fixed;
                    z-index: 1000;
                    left: 0;
                    top: 0;
                    width: 100%;
                    height: 100%;
                    justify-content: center;
                    align-items: center;
                    background: rgba(0, 0, 0, 0.5);
                }

                .popup-content {
                    background: #fff;
                    padding: 30px;
                    border-radius: 12px;
                    width: 100%;
                    max-width: 400px;
                    position: relative;
                }

                #naman-gallaxy-phone::placeholder {
                    color: white !important;
                }

                .close-btn {
                    position: absolute;
                    top: 10px;
                    right: 15px;
                    font-size: 24px;
                  
                }

                form input,
                form button {
                    width: 100%;
                    padding: 12px;
                    margin: 10px 0;
                    border-radius: 8px;
                    border: 1px solid #ccc;
                    outline: none;
                }

                /* Flag + phone input styling */
                .phone-input {
                    display: flex;
                    align-items: center;
                    border: 1px solid #ccc;
                    border-radius: 8px;
                    overflow: hidden;
                }

                .flag {
                    display: flex;
                    align-items: center;
                    background: #f1f1f1;
                    padding: 0 10px;
                    gap: 5px;
                }

                .flag img {
                    width: 20px;
                    height: 14px;
                    border: 1px solid #ddd;
                    border-radius: 2px;
                }

                .country-code {
                    font-size: 14px;
                    color: #000;
                }

                .phone-input input {
                    border: none;
                    outline: none;
                    flex: 1;
                    padding: 12px;
                }

.paraTwo{
        font-size: 13px;
        line-height: 22px;
        letter-spacing: 0.1px;
}

.swiperPrevProimg img{
    width: 8px !important;
   
}

.projectBox p{
    font-size: 14px;
    letter-spacing: 0.2px;
    line-height: 28px;
}

.projectBox h2{
    font-weight: 400;
    text-transform: uppercase;
    font-size: 18px;
    letter-spacing: 0.2px;
    word-spacing: 2px;
}
.growth{
    font-weight: 500;
    text-transform: uppercase;
    font-size: 14px;
}
.paraThree {
    font-size: 14px;
    line-height: 25px;}




    .ongingprojectList .ongingprojectBox .ongingprojectLogo img {
    width: 150px;
    transition: filter 0.5s ease, transform 0.5s ease;
    filter: brightness(0) invert(1);
}

/* Hover state: logo shows original color */
.ongingprojectList .ongingprojectBox:hover .ongingprojectLogo img {
    filter: none;
    transform: scale(1.05);
}


@media(min-width:1200px){
    .bg-video {
    position: absolute;
    top: 25%;
    right: 8%;
    min-width: 20%;
    opacity: 0.2;
    /* min-height: 100%; */
    width: 180px;
    height: auto;
    /* transform: translate(0%, 50%); */
    object-fit: cover;
    z-index: 0;
}
}